Keysight Pathwave 89600 VSA .NET API
VersionInfo Constructor
See Also 
Agilent.SA.Vsa.Interfaces Assembly > Agilent.SA.Vsa Namespace > VersionInfo Class : VersionInfo Constructor


releaseName
The release name of the VSA application.
apiVersion
The version of the API for the application.
installPath
The path to the installation folder for the VSA application.
capabilities
A dictionary of capabilities of the VSA application. An instance of this class will wrap the passed in dictionary in a ReadOnlyDictionary to expose to users of instances of this class.

Glossary Item Box

Initializes a new instance of the VersionInfo class.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal releaseName As String, _
   ByVal apiVersion As Version, _
   ByVal installPath As String, _
   ByVal capabilities As IDictionary(Of String,String) _
)
C# 
public VersionInfo( 
   string releaseName,
   Version apiVersion,
   string installPath,
   IDictionary<string,string> capabilities
)
C++/CLI 
public:
VersionInfo( 
   String^ releaseName,
   Version^ apiVersion,
   String^ installPath,
   IDictionary<String^,String^>^ capabilities
)

Parameters

releaseName
The release name of the VSA application.
apiVersion
The version of the API for the application.
installPath
The path to the installation folder for the VSA application.
capabilities
A dictionary of capabilities of the VSA application. An instance of this class will wrap the passed in dictionary in a ReadOnlyDictionary to expose to users of instances of this class.

Requirements

Target Platforms: Windows 11 Professional or Enterprise; Windows 10 Professional, Enterprise, or Education (64-bit)

See Also